home *** CD-ROM | disk | FTP | other *** search
- head 1.3;
- branch ;
- access ;
- symbols beta10:1.2;
- locks death:1.3;
- comment @ * @;
-
-
- 1.3
- date 93.04.04.23.44.06; author death; state Exp;
- branches ;
- next 1.2;
-
- 1.2
- date 93.01.10.15.07.30; author death; state Exp;
- branches ;
- next 1.1;
-
- 1.1
- date 92.07.26.13.56.28; author death; state Exp;
- branches ;
- next ;
-
-
- desc
- @Serves as a basic primitive converter object...
- @
-
-
- 1.3
- log
- @Sun Apr 4 23:44:06 PDT 1993
- @
- text
- @#import "ResultObject.h"
- #import "ConvertController.h"
- //
- //
- // This simple class has the simple purpose of serving as a base class for conversion
- // classes that interact with the ConvertController or it's subclasses. Thus, it simply
- // provides two simple methods which the ConvertController (or subclasses) refer to.
- // This allows the convertcontroller to include this among its imports so it has
- // definitions of these methods to make the compiler happy. It also serves to remind
- // me what minimum requirements I must have in a conversion class so it will talk with
- // the convertcontrollers (actually, one doesn't even need these, because the convert
- // controller checks before calling. but that's a technicality).
- //
- //
- @@interface AbstractConverter:ResultObject
- {
- id myManager;
- }
- - init;
- - ReportTo: sender;
- - (Boolean) isThisAGoodFile: Instance;
- @@end
-
- @
-
-
- 1.2
- log
- @Sun Jan 10 15:07:30 PST 1993
- @
- text
- @@
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @@
-